runtime.heapStatsDelta.released (field)
14 uses
runtime (current package)
metrics.go#L357: out.scalar = uint64(in.heapStats.released)
metrics.go#L434: out.scalar = uint64(in.heapStats.committed+in.heapStats.released) +
mgcscavenge.go#L794: atomic.Xaddint64(&stats.released, nbytes)
mheap.go#L1362: atomic.Xaddint64(&stats.released, -int64(scav))
mheap.go#L1505: atomic.Xaddint64(&stats.released, int64(size))
mheap.go#L1538: atomic.Xaddint64(&stats.released, int64(nBase-v))
mstats.go#L463: if gcController.heapReleased.load() != uint64(consStats.released) {
mstats.go#L465: print("runtime: consistent value=", consStats.released, "\n")
mstats.go#L488: if gcController.mappedReady.Load() != totalMapped-uint64(consStats.released) {
mstats.go#L491: print("runtime: released=", uint64(consStats.released), "\n")
mstats.go#L492: print("runtime: totalMapped-released=", totalMapped-uint64(consStats.released), "\n")
mstats.go#L663: released int64 // byte delta of released memory generated
mstats.go#L689: a.released += b.released
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |